home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
boostrs.arc
/
STIME.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1985-11-03
|
272b
|
14 lines
{ ---------------
SET TIME of day
--------------- }
Procedure Stime ( hh, mm, ss : integer );
begin
with regs do
begin
cx := swap(hh);
cx := cx or mm;
dx := swap(ss);
ax := $2D00;
intr($21,regs);
end;
end { Stime };